home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-03-29 | 481 b | 32 lines | [TEXT/MPS ] |
- PROGRAM Test;
-
- { Can be built using the MacApp command 'MABuild ObjectExample' }
-
- USES
- UMacApp;
-
- TYPE
- TShape = OBJECT (TObject)
- fBounds: Rect;
- fColor: RGBColor;
- END;
-
- VAR
- aShape: TShape;
- sameShape, copiedShape: TShape;
-
- BEGIN
- InitUMacApp(8);
-
- New(aShape);
- FailNIL(aShape);
-
- aShape.fBounds := gZeroRect;
- aShape.fColor := gRGBBlack;
-
- sameShape := aShape;
-
- copiedShape := TShape(aShape.Clone);
-
- FailNIL(copiedShape);
- END.